From 0eb4770cfa4d3e493bc352457870ac3dadb559d8 Mon Sep 17 00:00:00 2001 From: Matthias Clasen Date: Tue, 12 Feb 2008 16:35:02 +0000 Subject: [PATCH] Don't let the width or height go below 1. (#516024, Christian Persch) 2008-02-12 Matthias Clasen * gdk-pixbuf-io.c (at_scale_size_prepared_cb): Don't let the width or height go below 1. (#516024, Christian Persch) svn path=/trunk/; revision=19534 --- gdk-pixbuf/ChangeLog | 5 +++++ gdk-pixbuf/gdk-pixbuf-io.c | 3 +++ 2 files changed, 8 insertions(+) diff --git a/gdk-pixbuf/ChangeLog b/gdk-pixbuf/ChangeLog index 2c45fec75f..7f978c423c 100644 --- a/gdk-pixbuf/ChangeLog +++ b/gdk-pixbuf/ChangeLog @@ -1,3 +1,8 @@ +2008-02-12 Matthias Clasen + + * gdk-pixbuf-io.c (at_scale_size_prepared_cb): Don't let + the width or height go below 1. (#516024, Christian Persch) + 2008-02-10 Matthias Clasen * gdk-pixbuf-scaled-anim.c: Try harder to return pixbufs diff --git a/gdk-pixbuf/gdk-pixbuf-io.c b/gdk-pixbuf/gdk-pixbuf-io.c index 206ed7962c..30cffb37e2 100644 --- a/gdk-pixbuf/gdk-pixbuf-io.c +++ b/gdk-pixbuf/gdk-pixbuf-io.c @@ -1048,6 +1048,9 @@ at_scale_size_prepared_cb (GdkPixbufLoader *loader, height = info->height; } + width = MAX (width, 1); + height = MAX (height, 1); + gdk_pixbuf_loader_set_size (loader, width, height); } -- 2.30.2